home *** CD-ROM | disk | FTP | other *** search
/ Hackers Handbook - Millenium Edition / Hackers Handbook.iso / files / c_scripts / sweep.perl < prev    next >
Text File  |  1998-12-05  |  5KB  |  208 lines

  1. This script was developed and tested on NT4.0 running
  2. ActiveState's ActivePerl build 506.  With minor mods,
  3. and the addition of the shebang syntax, it should work
  4. on Un*x, as well.  
  5.  
  6. sweep.pl is a port scanner (I put a the ports in the 
  7. '@ports' array...I kept the number small for testing
  8. purposes) that lists which ports are active, grabs 
  9. banners/HTTP server/finger output (where available) and
  10. writes it all to a logfile at the same time as to 
  11. STDOUT.  
  12.  
  13. Feel free to use or modify...just be sure to give 
  14. credit where credit is due!!
  15.  
  16. Keydet89
  17.  
  18. #####################################################
  19. # sweep.pl
  20. # by Keydet89 <keydet89@yahoo.com>
  21. #    12 Nov 1998
  22. #
  23. # written and tested on NT 4.0 w/ ActivePerl build 506 
  24. #
  25. # usage 'perl sweep.pl [options]
  26. #   [options] => hostname or IP
  27. # sweep a host looking for open ports; 
  28. # list of active ports are placed into an array, 
  29. # and further information is gathered;
  30. # performs auto-logging
  31. #####################################################
  32. # for www_svr
  33. use LWP::Simple;
  34.  
  35. # for socket
  36. use IO::Socket;
  37.  
  38. # for Win32-specific functions
  39. use Win32;
  40.  
  41. if ($#ARGV < 0) {
  42.   usage();
  43.   exit;
  44. }
  45.  
  46. # Ports to check
  47. @ports = (21,23,25,79,80,139,12345);
  48. @active_ports;
  49.  
  50. # Assign hostname/IP to variable
  51. $target = $ARGV[0];
  52.  
  53. print "Checking $target...\n";
  54. #################################################
  55. # main section
  56. #################################################
  57.  
  58. # open log file
  59. # all data written to screen and log
  60. # new scans of same system overwritten
  61. open (LOG,">$target.log");
  62.  
  63. $ip = name($target);
  64. foreach $port (@ports) {
  65.   check_port($ip,$port);
  66. }
  67.  
  68. # Now, collect banner from active ports
  69. print "\nNow checking active ports...\n";
  70. print LOG "\nNow checking active ports...\n";
  71. get_data($ip);
  72.  
  73. #################################################
  74. # Get name or IP, do lookup
  75. #################################################
  76. sub name {
  77.   my ($host) = @_;
  78. #  print "\nUsing gethostbyaddr()...\n";
  79.   ($name,$alias,$addrtype,$length,$new_addr) = 
  80.       gethostbyaddr(inet_aton($host),AF_INET);
  81.   print "Hostname:\t$name\n";
  82.   print LOG "Hostname:\t$name\n";
  83.   $ipaddr = inet_ntoa(scalar($new_addr));
  84.   print "IP:\t\t$ipaddr\n";
  85.   print LOG "IP:\t\t$ipaddr\n";
  86.  
  87.   return $ipaddr;
  88. }
  89.  
  90. #################################################
  91. # Get name of WWW Server
  92. #################################################
  93. sub www_svr {
  94.   my ($host) = @_;
  95.   ($content_type, $document_length, $modified_time,$expires, 
  96.     $server) = head("http://$host");
  97.  
  98.   print "HTTP Server:\t$server\n";
  99.   print LOG "HTTP Server:\t$server\n";
  100.  
  101. }
  102.  
  103. #################################################
  104. # Check to see if a port is open
  105. #################################################
  106. sub check_port {
  107.   my ($host,$port) = @_;
  108.   
  109.   $remote = IO::Socket::INET -> new (
  110.              Proto => "tcp",
  111.              PeerAddr => $host,
  112.              PeerPort => $port
  113.              ) ;
  114.   if ($remote) { 
  115.     close $remote;
  116.     print "$host:$port=>\tActive\n";
  117.     print LOG "$host:$port=>\tActive\n";
  118.     push @active_ports, $port;
  119.   }
  120.   else { 
  121.     print "$host:$port=>\tInactive\n"; 
  122.     print LOG "$host:$port=>\tInactive\n";
  123.   }  
  124. }
  125.  
  126. #################################################
  127. # subroutine to collect data from active ports
  128. #################################################
  129. sub get_data {
  130.   my ($host) = @_;
  131.   
  132.   foreach $port (@active_ports) {
  133.     if ($port == 80) {www_svr($host);}
  134.     if ($port == 21) {get_banner($host,$port);}
  135.     if ($port == 25) {get_banner($host,$port);}
  136.     if ($port == 79) {finger($host);}
  137.     if ($port == 110) {get_banner($host,$port);}
  138.     if (($port == 139) && Win32::IsWinNT()) {nbt($host);}
  139.   }
  140. }
  141.  
  142. #################################################
  143. # Get banner (single line) from port
  144. #################################################
  145. sub get_banner {
  146.   my ($host,$port) = @_;
  147.   $remote = IO::Socket::INET -> new (
  148.           Proto => "tcp",
  149.           PeerAddr => $host,
  150.           PeerPort => $port
  151.           ) or die "Could not open socket.\n";
  152.  
  153.   $line = <$remote>;
  154.   print "$line\n";
  155.   print LOG "$line\n";
  156.   close $remote;
  157. }
  158.  
  159. #################################################
  160. # Send data to a port, read back all data
  161. # (finger)
  162. #################################################
  163. sub finger {
  164.   my ($host) = @_;
  165.   print "Finger $host...\n";
  166.   print LOG "Finger $host...\n";
  167.   $remote = IO::Socket::INET -> new (
  168.           Proto => "tcp",
  169.           PeerAddr => $host,
  170.           PeerPort => 79
  171.           );
  172.   print $remote "\n";
  173.   @lines = <$remote>;
  174.   close $remote;
  175.   foreach $line (@lines) { 
  176.     print "$line";
  177.     print LOG "$line";
  178.   }
  179.   print "\n";
  180.   print LOG "\n";
  181. }
  182.  
  183. #################################################
  184. # Run nbtstat on the target
  185. #################################################
  186. sub nbt {
  187.   print "\nRunning nbtstat...\n";
  188.   my ($host) = @_;
  189.   open(NBT,"nbtstat -A $host |");
  190.   while(<NBT>) { 
  191.     print ; 
  192.     print LOG ;
  193.   }
  194. }
  195.  
  196. #################################################
  197. # Print out usage 
  198. #################################################
  199. sub usage {
  200.  print "usage: perl sweep.pl [options]\n\n";
  201.  print "\t[options]\tHostname or IP address of target\n";
  202. }
  203.  
  204.  
  205.  
  206.  
  207.